All Questions
12 questions
2votes
2answers
1kviews
Reading and Storing Integer from Serial Monitor
Description I wanted to understand how integers can be written and stored inside variables without the use of Serial.parseInt(). I couldn't find any code examples about this. Perhaps this is the ...
4votes
2answers
102views
Arduino project to indicate soil moisture using LEDs
I've recently started going through the Head First C book. I'd like to get up to speed in terms of writing good, idiomatic, modern C. I have read the first few chapters of the Modern C book too but ...
2votes
1answer
281views
Arduino Create and send data to Serial Port (Software Serial function)
I have this code written and functioning that will write out the chars in cmd to a serial port for an input of two int values. As the majority of the byte values ...
6votes
1answer
404views
A GUI program for a Buzzer system using Arduino
At the outset, I am a beginner at Python, having started out about 2 weeks back. Aim- To create a GUI program, that can adequately work as a buzzer-management system. A buzzer, like those used in ...
5votes
1answer
2kviews
Simon Says using Arduino UNO
I built a Simon Says game using an Arduino UNO board. This was my first "real" arduino project. I would like to know how to make it better, game mechanics and code efficiency. ...
4votes
1answer
225views
Attaching an interrupt to a member function
I am making my own optical encoders. Each of them follows the exact same structure, so I figured I'd lump all the encoder processing in a class, StepCounter. ...
13votes
2answers
799views
Wireless Rickroll using Arduino
This is a script I made for the ESP8266 that uses the Wi-Fi chip and creates a new Access Point every 5 seconds in order to display a message on WiFi lists on nearby devices that looks like this: The ...
4votes
2answers
660views
Arduino code to run an LED matrix over Bluetooth
I've made an Arduino program to run on my Teensy 3.1 board. It accepts characters and strings sent to a Bluetooth module (BC417) from any Bluetooth-enabled device and uses these to power certain pins ...
1vote
0answers
3kviews
Pong game with 8x8 matrix LED display in Arduino
I was working on programming an 8x8 matrix LED display. In particular, I am trying to make a basic version of Pong, controlled by two switches, one switch for each paddle. A ball is generated and ...
7votes
1answer
2kviews
Chess countdown timer for Arduino LCD Keypad
I'm very new to C++ and Arduino, with a background in Python. I've written this code for a countdown timer and a simple menu to set the time available to each player, using button handling code from ...
4votes
1answer
5kviews
Arduino based ultrasonic sensor program, output HIGH to control electric motor
I am brand new to C++ and am working with the Arduino micro controller. The project I've been working on for my university requires me to write code to do the following: If the ultrasonic sensor ...
6votes
1answer
424views
Domotics control system
This is a project about a domotics control system based on arduino. Nothing great; it's only for testing myself and making stuff. Before I started coding this, I searched on the net for some useful ...